+2006-07-19 Matthias Clasen <mclasen@redhat.com>
+
+ * xdgmimeglob.c (_xdg_glob_hash_node_lookup_file_name):
+ Don't return NULL as a mimetype, ever, patch
+ by Yevgen Muntyan, bugs.freedesktop.org #5241
+
2006-07-02 Matthias Clasen <mclasen@redhat.com>
* === Released 2.10.0 ===
if (*file_name == '\000')
{
n = 0;
- mime_types[n++] = node->mime_type;
+ if (node->mime_type)
+ mime_types[n++] = node->mime_type;
node = node->child;
while (n < n_mime_types && node && node->character == 0)
{
- mime_types[n++] = node->mime_type;
+ if (node->mime_type)
+ mime_types[n++] = node->mime_type;
node = node->next;
}
}